|
|
@@ -13,7 +13,7 @@ module Agents
|
13
|
13
|
|
14
|
14
|
For the first option, you must provide the `username` of the Twitter user to monitor.
|
15
|
15
|
|
16
|
|
- For the second option, you must remove `username` and set `choose_home_time_line` to `true`. Forgetting to remove username will malfunction the agent.
|
|
16
|
+ For the second option, you must set `choose_home_time_line` to `true`.
|
17
|
17
|
|
18
|
18
|
Set `include_retweets` to `false` to not include retweets (default: `true`)
|
19
|
19
|
|
|
|
@@ -67,9 +67,8 @@ module Agents
|
67
|
67
|
def validate_options
|
68
|
68
|
errors.add(:base, "expected_update_period_in_days is required") unless options['expected_update_period_in_days'].present?
|
69
|
69
|
|
70
|
|
- if options[:choose_home_time_line] == 'false'
|
71
|
|
- errors.add(:base, "username is required")
|
72
|
|
- end
|
|
70
|
+ errors.add(:base, "username is required") unless options['choose_home_time_line'].include?('true')
|
|
71
|
+
|
73
|
72
|
if options[:include_retweets].present? && !%w[true false].include?(options[:include_retweets])
|
74
|
73
|
errors.add(:base, "include_retweets must be a boolean value string (true/false)")
|
75
|
74
|
end
|